home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980424-19980901 / 000106_news@newsmaster….columbia.edu _Thu May 21 16:48:57 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA08884
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 21 May 1998 16:48:56 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA12817
  7.     for kermit.misc@watsun; Thu, 21 May 1998 16:48:55 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: One-Way Transfer
  12. Date: 21 May 1998 20:48:49 GMT
  13. Organization: Columbia University
  14. Lines: 51
  15. Message-ID: <6k23vh$i36$1@apakabar.cc.columbia.edu>
  16. References: <35646665.EBB3868B@theriver.com> <6k1qoj$d92$1@apakabar.cc.columbia.edu> <356474F3.A7EF89F9@theriver.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8759
  19.  
  20. In article <356474F3.A7EF89F9@theriver.com>,
  21. Andy Fox  <foxes@theriver.com> wrote:
  22. : Thank you for the quick response!
  23. : I set the flow control on both sides to XON/XOFF, and also used the
  24. : ROBUST command on the K95 side.  Still no joy.
  25. : Here is a little more detail of a typical problem.  I start K95 on the
  26. : PC, then put it in SERVER mode.  I then select Transfer, then Choose on
  27. : the calculator, which is supposed to ask the PC for a list of files on
  28. : the PC.  When I do this, the PC reports "FAILURE:  REMOTE HOST
  29. : disabled."
  30. :
  31. So they are communicating.  Note the REMOTE HOST is a potentially dangerous
  32. command, so it is disabled in the server by default.  If you trust your
  33. calculator, tell K95 to:
  34.  
  35.   ENABLE HOST
  36.  
  37. (See pages 228-230 of "Using C-Kermit" 2nd Ed., and pages 237-242.)
  38.  
  39. It would have made a bit more sense for the calculator to send a REMOTE
  40. DIRECTORY command, rather than REMOTE HOST, but unfortunately HP did not
  41. consult with us in putting together their Kermit implementation for the
  42. HP48.
  43.  
  44. : I also experimented with the handshaking character to no avail.  "None"
  45. : seems to be the best choice, since nothing at all happens (well, it does
  46. : time out) if I set the handshaking character to XON or XOFF.
  47. Conflicting rumors abound concerning the pecularities of the HP48.  All I
  48. can conclude from them is that there are many models that behave differently.
  49.  
  50. One persistent rumor is that the calculator's serial port can not handle 
  51. input and output at the same time; thus it is "half duplex".  And furthermore,
  52. that it takes a perceptible amount of time to switch directions; during this
  53. time, it loses incoming bytes.
  54.  
  55. The way to compensate for this in Kermit 95 is with the command:
  56.  
  57.   set send pause 100
  58.  
  59. (or other number) -- how many milliseconds to pause prior to sending a
  60. packet to give the HP48's receiver time to wake up.
  61.  
  62. I would like to hear from other HP48 users about their Kermit settings
  63. and/or experiences with different models or vintages of HP48s, so we can
  64. produce an HP48/Kermit FAQ.  Feel free to cross-post here and on the
  65. relevant HP48 newsgroup (I don't know what it is offhand).
  66.  
  67. - Frank